projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b24cf85
)
ARM: uniphier: revive accidentally removed dcache_disable()
author
Masahiro Yamada
<
[email protected]
>
Mon, 20 Feb 2017 05:23:37 +0000
(14:23 +0900)
committer
Masahiro Yamada
<
[email protected]
>
Wed, 22 Feb 2017 23:37:56 +0000
(08:37 +0900)
Commit
a8e6300d483d
("ARM: uniphier: refactor spl_init_board()")
accidentally dropped dcache_disable() call. Since then, the SPL of
LD11 and LD20 failed to load U-Boot proper.
Fixes: a8e6300d483d ("ARM: uniphier: refactor spl_init_board()")
Signed-off-by: Masahiro Yamada <
[email protected]
>
arch/arm/mach-uniphier/spl_board_init.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-uniphier/spl_board_init.c
b/arch/arm/mach-uniphier/spl_board_init.c
index da749a3d6d4e43cc66f70353545b74cb23180fe3..0079a083e838f0ebded6be1016eea193b335b036 100644
(file)
--- a/
arch/arm/mach-uniphier/spl_board_init.c
+++ b/
arch/arm/mach-uniphier/spl_board_init.c
@@
-168,4
+168,8
@@
void spl_board_init(void)
pr_err("failed to init DRAM\n");
hang();
}
+
+#ifdef CONFIG_ARM64
+ dcache_disable();
+#endif
}